home *** CD-ROM | disk | FTP | other *** search
/ Micrografx ABC Graphics Suite / Micrografx ABC Graphics Suite - Disc 2.iso / abc.z / OLE_VBX.H < prev    next >
C/C++ Source or Header  |  1995-09-15  |  1KB  |  44 lines

  1. // ole_vbx.h : main header file for the OLE_VBX application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"       // main symbols
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // COle_vbxApp:
  12. // See ole_vbx.cpp for the implementation of this class
  13. //
  14.  
  15. class COle_vbxApp : public CWinApp
  16. {    
  17. public:
  18.     COle_vbxApp();
  19.     
  20. // Overrides
  21.     virtual BOOL InitInstance();
  22.  
  23. // Implementation
  24.     COleTemplateServer m_server;
  25.     // Server object for document creation
  26.  
  27.     //{{AFX_MSG(COle_vbxApp)
  28.     afx_msg void OnAppAbout();
  29.         // NOTE - the ClassWizard will add and remove member functions here.
  30.         //    DO NOT EDIT what you see in these blocks of generated code !
  31.     //}}AFX_MSG
  32.     DECLARE_MESSAGE_MAP()
  33. };
  34.  
  35. /////////////////////////////////////////////////////////////////////////////
  36. // VB-Event extern declarations
  37.  
  38. //{{AFX_VBX_REGISTER()
  39.     extern UINT NEAR VBN_DOUBLECLICKSUBCLASS;
  40.     extern UINT NEAR VBN_DELETESUBCLASS;
  41. //}}AFX_VBX_REGISTER
  42.  
  43. /////////////////////////////////////////////////////////////////////////////
  44.